home *** CD-ROM | disk | FTP | other *** search
Wrap
/* * EX24WIN.RC * * Header file for ArchiveLib 1.0 * * Copyright (c) Greenleaf Software, Inc. 1994 * All Rights Reserved * * DESCRIPTION * * This is the RC file used by Windows example program 00. It * has all of the constants defined for use in the RC file that * is linked with this example. Note that the exact same RC * is used by both the C++ and C example programs. * * REVISION HISTORY * * June 10, 1994 1.0A : First release * */ #ifndef WS_POPUP #include <windows.h> #endif #include "ex24win.h" ////////////////////////////////////////////////////////////////////////////// // // Dialog // ALMAINDIALOG DIALOG 11, 30, 197, 144 STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU FONT 8, "MS Sans Serif" { EDITTEXT AL_ARCHIVE_NAME, 54, 45, 77, 12 PUSHBUTTON "&Compress", AL_COMPRESS, 148, 46, 42, 12 PUSHBUTTON "E&xit", AL_EXIT, 148, 84, 42, 12 LTEXT "Archive:", IDC_STATIC, 4, 46, 33, 8 EDITTEXT AL_INPUT_FILES, 54, 64, 77, 12, ES_AUTOHSCROLL LTEXT "Input files:", IDC_STATIC, 4, 64, 42, 8 LTEXT "AL_PROGRESS_TEXT", AL_PROGRESS_TEXT, 58, 82, 82, 10 PUSHBUTTON "About", AL_ABOUT, 148, 65, 42, 12 LTEXT "Windows example 24: This example uses the simplified interface API to add a batch of files to WIN00.ZIP. It also demonstrates the use of ALGauge objects as progress monitors.", IDC_STATIC, 5, 5, 185, 36 RTEXT "File:", IDC_STATIC, 9, 82, 42, 10 RTEXT "File progress:", IDC_STATIC, 10, 100, 48, 10 RTEXT "Job progress:", IDC_STATIC, 10, 119, 48, 10 CONTROL "", AL_FILE_PROGRESS, "ALGauge", 0 | WS_CHILD | WS_VISIBLE, 65, 100, 67, 15 CONTROL "", AL_JOB_PROGRESS, "ALGauge", 0 | WS_CHILD | WS_VISIBLE, 65, 119, 67, 15 } ALABOUTDIALOG DIALOG DISCARDABLE 0, 0, 145, 70 STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU CAPTION "Dialog" FONT 8, "MS Sans Serif" BEGIN DEFPUSHBUTTON "OK",IDOK,47,51,50,14 ICON "ALIcon",IDC_STATIC,6,6,18,20 CTEXT "Greenleaf Archive Library",IDC_STATIC,31,10,103,12 CTEXT "Copyright (c) 1994-1996",IDC_STATIC,21,28,103,12 END ////////////////////////////////////////////////////////////////////////////// // // Icon // ALICON ICON DISCARDABLE "ALICON.ICO" ////////////////////////////////////////////////////////////////////////////// // // Menu // ALMENU MENU DISCARDABLE BEGIN POPUP "&File" BEGIN MENUITEM "E&xit", AL_EXIT END POPUP "&Help" BEGIN MENUITEM "&About", AL_ABOUT END END